home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / newsgroups / misc.20021006-20030409 / 000407_msapiro@ccsf.edu_Wed Apr 9 08:48:11 EDT 2003.msg < prev    next >
Text File  |  2020-01-01  |  2KB  |  52 lines

  1. Article: 14210 of comp.protocols.kermit.misc
  2. Path: newsmaster.cc.columbia.edu!phl-feed.news.verio.net!iad-feed.news.verio.net!iad-peer.news.verio.net!news.verio.net!newsfeed.icl.net!newsfeed.fjserv.net!newsfeed.icl.net!newsfeed.fjserv.net!out.nntp.be!propagator2-sterling!news-in.nuthinbutnews.com!usc.edu!newshub.csu.net!sand.ccsf.cc.ca.us!fog.ccsf.cc.ca.us!msapiro
  3. From: Mark Sapiro <msapiro@ccsf.edu>
  4. Newsgroups: comp.protocols.kermit.misc
  5. Subject: Re: init string modification
  6. Date: Tue, 8 Apr 2003 18:47:43 -0700
  7. Organization: City College of San Francisco
  8. Lines: 34
  9. Message-ID: <Pine.HPX.4.44.0304081817150.5354-100000@fog.ccsf.cc.ca.us>
  10. References: <PIucncSY7NRP8A6jXTWcrg@comcast.com>
  11. NNTP-Posting-Host: fog.ccsf.cc.ca.us
  12. Mime-Version: 1.0
  13. Content-Type: TEXT/PLAIN; charset=US-ASCII
  14. X-X-Sender: msapiro@fog.ccsf.cc.ca.us
  15. In-Reply-To: <PIucncSY7NRP8A6jXTWcrg@comcast.com>
  16. Xref: newsmaster.cc.columbia.edu comp.protocols.kermit.misc:14210
  17.  
  18.  
  19. On Tue, 8 Apr 2003, it was written:
  20.  
  21. > Looking for a bit of confirmation or suggestion as to best practice re K95
  22. > v2.
  23. >
  24. > Using tapi (set port tapi), I wish to modify a modem setup string to turn
  25. > off its' blacklisting "feature".  It occurs to me that all I should have to
  26. > do in my script is to \Freplace the \v(m-init) string to insert the command,
  27. > after testing \v(modem) name to insure I don't shoot my self in the foot.
  28. > Almost too easy?
  29.  
  30. Yup!
  31.  
  32. Kermit built in variables are read only.  You can't assign or define them
  33. or change their values with functions.
  34.  
  35. You change \v(m_init) with the command
  36.    SET MODEM COMMAND INIT-STRING
  37.  
  38. You might also find useful
  39.    SET MODEM COMMAND PREDIAL-INIT
  40.  
  41. Give the command
  42.    HELP MODEM
  43. for more info.
  44.  
  45. Note, you can
  46.    SET MODEM COMMAND INIT-STRING \freplace(\v(m_init),...)
  47.  
  48. --
  49. Mark Sapiro <msapiro@value.net>       The highway is for gamblers,
  50. San Francisco Bay Area, California    better use your sense - B. Dylan
  51.  
  52.